home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / WORDS.HLP < prev   
Text File  |  1988-10-27  |  2KB  |  48 lines

  1. \ WORDS.HLP     The WORDS definition       Enhancements by Tom Zimmer
  2.  
  3. VYET   \ DID WE PRINT VOCABULARY YET
  4. VADDR  \ VOCABULARY NAME ADDRESS
  5.  
  6. .VYET           ( --- )
  7.         Print the name of the vocabulary if we have not printed it yet.
  8.  
  9. INWFLG          Display a subset of words matching flag.
  10. ALLFLAG         Display all words flag.
  11. CODEWRDS        Display only CODE words flag.
  12. TOTALWORDS      Accumulator for the total number of names.
  13.  
  14. W.NAME          ( NFA --- )
  15.         Print name of word NFA. Test to see if conditions are correct,
  16.         like CODE, or ALL, or WITHIN, and print name.
  17.  
  18. .VOCWORDS       ( A1 --- )
  19.         Display the words matching, from a vocabulary.
  20.  
  21. WORDS           ( | <text> <text> -- )
  22.         Display words that match text. <text> is optional, if ommited
  23.         then the CONTEXT vocabulary will be displayed.  Two space
  24.         delimited <text> strings may follow, and only words
  25.         containing both <text> strings will be printed:
  26.  
  27.         WORDS > @ <enter>       display all words containing both @
  28.                                 and >.
  29.  
  30.         WORDS X Y <enter>       display all owrds containing both X
  31.                                 and Y.
  32.  
  33.         WORDS DUP <enter>       Display all words containing DUP.
  34.  
  35.         Several specific values for <text> can be included on the
  36.         command line, as follows:
  37.  
  38.         WORDS *.*               display all words of all vocs.
  39.         WORDS CODE.*            display all CODE words.
  40.         WORDS :.*               display all : definitions.
  41.         WORDS CONSTANT.*        display all constants.
  42.         WORDS VARIABLE.*        display all variables.
  43.         WORDS UVARIABLE.*       display all user variables.
  44.         WORDS DEFER.*           display all defered words.
  45.         WORDS UDEFER.*          display all user defered words.
  46.         WORDS TOTAL.*           display the total count of words only.
  47.  
  48.